Path: / workflows / {wid} / executions

Get all executions by workflow id

Path parameters:
wid -

Resources
NameDescription
{eid}

Method Summary
ResourceDescription
POST /workflows/{wid}/executions?run=… 
GET /workflows/{wid}/executions?page=…&size=…Get all executions by workflow id

Method Detail
HTTP Example:
POST /workflows/{wid}/executions?run=…

API Example:

WorkflowResource.createExecution({'run': …,
  'wid': …});

Output:
java.lang.String
Query parameters:
run
Consumes:
application/json
HTTP Example:
GET /workflows/{wid}/executions?page=…&size=…

API Example:

WorkflowResource.getExecutions({'page': /* page page number starting 0 */,
  'size': /* size number of workflows per page */,
  'wid': /* workflowId workflow id */});

Get all executions by workflow id

Output:
java.util.List<edu.illinois.ncsa.datawolf.domain.Execution> - a execution in JSON
Query parameters:
page - page number starting 0
size - number of workflows per page
Produces:
application/json